Silence _LIBCPP_ELAST porting warning on __APPLE__ This fixes a warning accidentally introduced in r216943. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@216977 91177308-0d34-0410-b5e6-96231b3b80d8 
diff --git a/include/__config b/include/__config index 6347b51..5bb55fa 100644 --- a/include/__config +++ b/include/__config 
@@ -641,6 +641,8 @@  #define _LIBCPP_ELAST 4095  #elif defined(_NEWLIB_VERSION)  #define _LIBCPP_ELAST __ELASTERROR +#elif defined(__APPLE__) +// Not _LIBCPP_ELAST needed on Apple  #else  // Warn here so that the person doing the libcxx port has an easier time:  #warning This platform's ELAST hasn't been ported yet